home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / misc / bgui12.lha / Classes / PaletteClass / paletteclass.h < prev    next >
C/C++ Source or Header  |  1995-06-13  |  821b  |  37 lines

  1. #ifndef PALETTECLASS_H
  2. #define PALETTECLASS_H
  3. /*
  4. **    $VER: paletteclass.h 1.0 (27.5.95)
  5. **    C Header for the BOOPSI palette gadget class.
  6. **
  7. **    (C) Copyright 1995 Jaba Development.
  8. **    (C) Copyright 1995 Jan van den Baard.
  9. **        All Rights Reserved.
  10. **/
  11.  
  12. #ifndef EXEC_TYPES_H
  13. #include <exec/types.h>
  14. #endif
  15.  
  16. #ifndef INTUITION_CLASSES_H
  17. #include <intuition/classes.h>
  18. #endif
  19.  
  20. #ifndef UTILITY_TAGITEM_H
  21. #include <utility/tagitem.h>
  22. #endif
  23.  
  24. /* Tags */
  25. #define PALETTE_Depth        TAG_USER+0x70000    /* I---- */
  26. #define PALETTE_ColorOffset    TAG_USER+0x70001    /* I---- */
  27. #define PALETTE_PenTable    TAG_USER+0x70002    /* I---- */
  28. #define PALETTE_CurrentColor    TAG_USER+0x70003    /* ISGNU */
  29.  
  30. /* TAG_USER+0x70004 through TAG_USER+0x700020 reserved. */
  31.  
  32. /* Prototypes */
  33. Class *InitPaletteClass( void );
  34. BOOL FreePaletteClass( Class * );
  35.  
  36. #endif
  37.